* {
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    color: white;
    background-color: rgb(20, 20, 50);
    min-height: 100vh;
}  
 
.site {
    margin: 0 auto;
    max-width: 80ch;
    min-height: 100vh;

    padding: 2em;
    border: 1px solid rgba(255, 255, 255, 0.1); 
}

.home-msg {
    background-color: rgb(0, 0, 0, 0.2); 
    padding: 1em;
}
.content {
    min-height: 100vh;
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 0em;
}

.contact p {
    margin: 0;
}

.contact h4 {
    margin-top: 1em;
}
header {
    text-align: center;
    padding: 2em;
}

.logo {
    text-decoration: none;
}

header h1 {
    text-decoration: underline;
    margin-bottom: 1em;
}
nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 1em;
    gap: 1em;
}

nav ul li a {
    color: white;
    border: 1px dashed white;
    text-decoration: none;
    padding: 0.5em;
}
 
.post {  
    border: 1px solid white; 
    display: flex; 
    align-items: center;
    margin: 1em 0em;
    gap: 2em;
    padding: 0.5em;
    color: white;
    text-decoration: none;
}

.post a {
    text-decoration: none;
}
.posts {
    list-style: none;
    padding: 0em;
} 

p {  
    margin-top: 1em;
}

.post-content h1, h2{
    margin-top: 2em;
} 

.post-content h3, h4 {
    margin-top: 1em;
}

.post-header {
    text-align: center;
    margin: 2em 0em;
}

.post-title {
    color: rgb(0, 255, 0);
}



